home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
090
/
cmln0985.arc
/
EXAMPLE3.BAS
< prev
next >
Wrap
BASIC Source File
|
1986-02-27
|
640b
|
23 lines
10 ' =================EXAMPLE 3==============================
15 ' Accepts a (superficially) English sentence.
20 '
25 ' Assumes no parentheses, quotations, hyphenations, proper nouns
30 ' (except the first word), contractions.
35 '
40 ' data for "nextnode" lists
45 DATA 6
50 DATA 0,1,6,0
55 DATA 1,2,0
60 DATA 2,2,3,4,5,0
65 DATA 3,2,0
70 DATA 4,3,0
75 DATA 5,6,0
80 DATA 6,0
85 ' data for node character sets
90 DATA 6
95 DATA "","ABCDEFGHIJKLMNOPQRSTUVWXYZ","abcdefghijklmnopqrstuvwxyz"
100 DATA " ",";:,",".?!","--"
haracter sets
90 DATA 6
95 DATA "","ABCDEFGHIJKLMNOPQRSTUVWXYZ","abcdefghijklmnopqrstuvwxyz"
1